home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-06-05 | 572 b | 26 lines |
- # Makefile for 680x0 Linux minix filesystem source directory
- #
- # Copyright 1993 by Hamish Macdonald
- #
- # This file is subject to the terms and conditions of the GNU General Public
- # License. See the file "README.legal" in the main directory of this archive
- # for more details.
-
- include ../../MakeVars
-
- OBJS= bitmap.o truncate.o namei.o inode.o \
- file.o dir.o symlink.o fsync.o
-
- minix.o: $(OBJS)
- $(LD) -r -o minix.o $(OBJS)
-
- dep:
- $(CPP) -M $(INCFLAGS) *.c > .depend
-
- #
- # include a dependency file if one exists
- #
- ifeq (.depend,$(wildcard .depend))
- include .depend
- endif
-